/* =========================
   ABOUT PAGE STYLES
========================= */

/* About Hero */
.about-hero {
  min-height: 100vh;
}

.about-hero h1 {
  letter-spacing: -0.5px;
}

/* People cards (founders, board, admin) */
.people-card {
  border-radius: 0.75rem;
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

.people-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background-color: #f0f8ff;
}

.people-card:hover h5 {
  color: var(--accent);
}

/* Circular profile images */
.people-card img {
  transition: transform 0.3s ease;
}

.people-card:hover img {
  transform: scale(1.05);
}

/* Staff & student leadership images */
.staff-image,
.student-leadership-image {
  object-fit: cover;
  width: 100%;
  max-height: 500px;
}

/* Events carousel images */
#eventsCarousel img {
  height: 320px;
  object-fit: cover;
}

/* Anthem box */
section audio {
  border-radius: 0.5rem;
}

/* Style for mobile devices */
/* =========================
   ABOUT PAGE – MOBILE FIXES
========================= */
@media (max-width: 991px) {

  /* Header spacing */
  body {
    padding-top: 95px;
  }

  /* About hero text scaling */
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  /* People cards spacing */
  .people-card {
    margin-bottom: 1rem;
  }

  /* Fix staff & leadership images */
  .staff-image,
  .student-leadership-image {
    max-height: 350px;
  }

  /* Events carousel */
  #eventsCarousel img {
    height: 250px;
  }

  /* Anthem lyrics box */
  section audio {
    width: 100%;
  }
}

@media (max-width: 576px) {

  /* Hero height */
  .about-hero {
    min-height: 90vh;
  }

  /* Section headings */
  h2 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  /* Profile images */
  .people-card img {
    width: 100px !important;
    height: 100px !important;
  }

  /* Event list readability */
  .list-group-item h6 {
    font-size: 0.95rem;
  }

  /* CTA buttons */
  .btn-lg {
    width: 100%;
  }
}
